home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / pascal / tbrktp60.zip / READ.ME < prev    next >
Text File  |  1992-07-06  |  762b  |  23 lines

  1. READKEY.TPU is a Turbo Pascal 6.0 unit for reading TriBBS key files.  It
  2. features the following function:
  3.  
  4. function ReadKeyFile(path : string) : integer;
  5.  
  6. Where:
  7.         path is the path to node 1's main directory.
  8.  
  9. Returns:
  10.         0 - if a valid key file isn't found.
  11.         Otherwise, ReadKeyFile returns the BBS's registration number.
  12.  
  13. Example:
  14.         The following program line would display a board's registration
  15.         number.
  16.  
  17.         writeln(ReadKeyFile('c:\tritel'));
  18.  
  19. READKEY.TPU is Copyright 1992 By Mark D. Goodwin.  It may be used freely by
  20. third-party programmers writing TriBBS utilities and doors to determine if
  21. a board is registered or not.  All other uses are strictly forbidden.  You
  22. may NOT disassemble this code!
  23.